home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
311_01
/
sortest.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-04-21
|
2KB
|
40 lines
/****************************************************************************/
/* */
/* */
/* sortest.c v1.3 (c) 1990 Ken Harris */
/* */
/* */
/****************************************************************************/
/* */
/* This software is made available on an AS-IS basis. Unrestricted */
/* use is granted provided that the copyright notice remains intact. */
/* The author makes no warranties expressed or implied. */
/* */
/****************************************************************************/
#include <stdio.h>
main()
{
char rec[10];
int i;
printf("sortest - Test of Callable Record Sort\n\n");
printf("Sort-init...\n");
sort_init(6, "aa1.4");
printf("Release 100 records...\n");
for (i=99; i>0; i--)
{ sprintf(rec, "%04d", i);
printf("%d\n", i);
sort_release(rec);
}
printf("Sort-merge...\n");
sort_merge();
printf("Return 100 records...\n");
while (sort_return(rec))
printf("%4.4s\n",rec);
}